* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }

  body {
    background-color: #fff;
    color: #000;
    line-height: 1.6;
  }

  /* Header & Navigation */
  header {
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* nav {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 40px;
    flex-wrap: wrap;
  }

  nav a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
  }

  nav a.active,
  nav a:hover {
    background-color: black;
    color: white;
  } */

/* Content Containers */
.section,
.wave-section,
.grave-section {
  padding: 60px 20px;
  position: relative; /* penting untuk posisi lingkaran */
  overflow: hidden;   /* supaya elemen latar belakang tidak keluar batas */
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative; /* untuk layering di atas lingkaran */
  z-index: 1;
}

.content {
  flex: 1 1 400px;
  min-width: 300px;
}

.content p {
    text-align: justify;
  }


/* Image Styling */
.img-rounded {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 10px;
}

/* Image with Circle Background */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background-color: #5f6767;
  border-radius: 50%;
  z-index: 0;
}

.church-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Wave Section */
.wave-section {
    background: #94b0b7; /* warna biru keabu-abuan sesuai desain */
    border-top: 10px solid #ccc;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
  }

  /* Kontainer Isi */
  .content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    align-items: flex-start;
  }

  /* Gambar Yesus */
  .img-rounded {
    width: 300px;
    border-radius: 20px;
  }

  /* Visi Misi Section */
  .visi-misi {
    flex: 1 1 600px;
    min-width: 300px;
    color: white; /* sesuai teks putih di gambar */
  }

  .visi-misi h3 {
    margin-top: 20px;
    font-size: 28px;
    color: white;
    text-align: center;
    letter-spacing: 1px;
  }

  .visi-misi p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: white;
  }

  .visi-misi ul {
    list-style-type: none;
    padding-left: 0;
  }

  .visi-misi li {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
    color: white;
    line-height: 1.6;
  }

  /* Grave Section */
  .nommensen-section {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 40px 0;
    color: #333;
  }

  .image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .image-row img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .content-box {
    max-width: 960px;
    margin: 0 auto;
    background-color: #f1f1f1;
    padding: 30px 40px;
    border-radius: 8px;
  }

  .content-box h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .content-box p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
  }
